home *** CD-ROM | disk | FTP | other *** search
- ' Demo Script ACOInit.Vbs
- '
- ' Alpha Centauri - March 1998
- ' ---------------------------
-
- Call MsgBox("This script will populate the ACODemo database." + _
- " A dialog box indicating the end of the procedure" + _
- " will be displayed. Please be patient.", _
- 64, "ACOTable InitScript")
-
- ' Connect to Personal Express and open the ACODemo Database
- Call ACOTable.Connect(False)
- Call ACOTable.Open("C:\PROGRA~1\ACOTABLE\ACODEMO", False)
-
- ' Populate the ACODemo database
- Call ACOTable.FetchData("Call AC_Fill.Var ; Upd")
-
- ' Detach the ACODemo database and disconnect from Personal Express
- Call ACOTable.Close("ACODemo")
- Call ACOTable.Disconnect()
-
- Call MsgBox("ACODemo database succesfully populated.", _
- 64, "ACOTable InitScript")
-